home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue34 / timetrav / testcal.dpr < prev    next >
Encoding:
Text File  |  1998-03-23  |  290 b   |  17 lines

  1. program testcal;
  2.  
  3. uses
  4.   Forms,
  5.   BaseDate in 'BaseDate.pas',
  6.   testmain in 'testmain.pas' {Form1},
  7.   CalConstants in 'CalConstants.pas',
  8.   ModCal in 'ModCal.pas';
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.Initialize;
  14.   Application.CreateForm(TForm1, Form1);
  15.   Application.Run;
  16. end.
  17.